home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Amos / AMOSList-1097 / AMOSLIST / text0050.txt < prev    next >
Encoding:
Text File  |  1998-06-24  |  1.9 KB  |  62 lines

  1. On 02-Okt-97, Peter Falkesand smashed the keyboard with:
  2. >Hi All..
  3.  
  4. Hello
  5.  
  6.  
  7. >Now i have a question for all of ya AMOS freaks out there!!!
  8.  
  9. Who ME ?? :-))
  10.  
  11.  
  12. >Is there some good extension that converts Dec to Hex ???
  13. >I know AMOS has one of it self but i doesn't like it.
  14. >A$=Hex$(50) give me the answer $32
  15. >But i doesn't want the $-sign in the value.. 
  16.  
  17. Use:
  18. A$=Hex$(50)-"$"
  19. or:
  20. A$=Mid$(Hex$(50),2)
  21.  
  22. >How do i copy a section of memory Ex.(175760-1788332) to
  23. >section (278544-281616)????
  24.  
  25. I haven't checked it, but something like:
  26. Copy Start_of_Source,End_of_Sorce to Start_of_Dest
  27. (Be sure that you've got enough memory at Dest or crash..)
  28.  
  29.  
  30. >And now to my second problem!
  31. >If i load a hiscore with 
  32. >Bload"bla:bla.blascore",5
  33. >and a second one with
  34. >Bload"bla:bla.blascore2",6
  35.  
  36. >how do i merge them into one hiscore??
  37.  
  38. >with the highest first etc..
  39. >(i only need a type of sort routine or ???)
  40.  
  41. Uhh, reserve a new bank with enough room to hold both lists, then sort 'em
  42. out and put 'em in using the order you'd like, an easy high-hunter should
  43. be enough as I don't expect you've got that many to remember, and to make
  44. very advanced binary sorting on that is a waste of time.. (High-hunt= run
  45. down the list to find the highest value, store that, then run down again
  46. the find the second, and so on)
  47.  
  48. >Happy to get answers..
  49.  
  50. Happy to give answers..
  51. -- 
  52. Happy greetings, Yours..
  53. __________________________________________________________________________
  54.  /_  __/ __  / __  /\  ___\  __ \__  _\           aka. JENS VANG PETERSEN
  55.   / / / /_/ / ____/  \ \___\  __ \ \ \  Nyvej 8, DK-4450 Jyderup, Denmark
  56.  /_/ /_____/_/        \_____\_\ \_\ \_\             top_cat@post8.tele.dk
  57. --------------------------------------------------------------------------
  58.  Never forget the 'Queen Of Hearts', Diana, Princess Of Wales, 1961->1997
  59. --------------------------------------------------------------------------
  60.  
  61.  
  62.